home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / os2 / remin301.zip / REMIN300.ZIP / TEST-REM < prev    next >
Text File  |  1992-11-10  |  398b  |  15 lines

  1. #!/bin/csh -f
  2. setenv TEST_GETENV "foo bar baz"
  3. ./remind -e -dxtev ./test.rem 16 feb 1991 > ./test.out
  4. cmp -s ./test.out ./test.cmp
  5. if ($status == 0) then
  6.    echo "Remind:  Acceptance test PASSED"
  7.    exit 0
  8. else
  9.    echo "Remind:  Acceptance test FAILED"
  10.    echo ""
  11.    echo "Examine the file test.out to see where it differs from the"
  12.    echo "reference file test.cmp."
  13.    exit 1
  14. endif
  15.